Require Python 3.11 and update package lock - #14
Merged
Conversation
Raise the project support floor from Python 3.10 to Python 3.11 because Google client libraries now warn when running on Python 3.10 ahead of its 2026-10-04 end of life. Bump python-datastore-sqlalchemy to 0.0.4 and add explicit Python 3.11, 3.12, and 3.13 classifiers so package metadata matches the new supported range. Regenerate uv.lock with uv lock --upgrade after changing requires-python to >=3.11. The new lock removes Python 3.10-only dependencies such as exceptiongroup and updates the resolved Google client library stack, including google-api-core, google-cloud-bigquery, google-cloud-core, google-cloud-firestore, and related transitive packages. Update Python CI to run the package test job against both Python 3.11 and 3.13. Python 3.11 validates the new minimum supported version, while Python 3.13 keeps coverage for the newer interpreter used by the existing CI job. The Superset integration job remains on Python 3.11. Validation: uv sync --locked passed; GCLOUD_PATH=/mnt/workspace/code/google-cloud-sdk/bin/gcloud uv run pytest passed on Python 3.12.3 with 399 tests; GCLOUD_PATH=/mnt/workspace/code/google-cloud-sdk/bin/gcloud uv run --python 3.11 pytest passed on Python 3.11.14 with 399 tests; Superset datastore integration tests passed with 20 tests.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why
Google client libraries now emit Python 3.10 end-of-life warnings. Moving this project to Python 3.11+ removes that warning path and aligns the support policy with the maintained Python versions we want to validate going forward.
Validation
Notes
The uv hardlink fallback warning can still appear in this workspace because the uv cache and .venv are on filesystems that do not support hardlinking across that boundary. This PR does not add project-level uv link-mode configuration for that local filesystem behavior.